d8bd1ef2fa173aeaa22dabff13960f5cd674c1bc,test/org/apache/coyote/http11/filters/TesterFlushableGZIPOutputStream.java,TesterFlushableGZIPOutputStream,testBug52121,#,36

Before Change



        InputStream input = cl.getResourceAsStream(
                "org/apache/coyote/http11/filters/bug52121-part1");
        IOTools.flow(input, output);
        input.close();
        output.flush();

After Change


        File sourcesDir = new File("test/org/apache/coyote/http11/filters/");
        InputStream input;

        input = new FileInputStream(new File(sourcesDir, "bug52121-part1"));
        try {
            IOTools.flow(input, output);
        } finally {
            input.close();
        }